home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-06-19 | 748 b | 21 lines |
- /*
- * DbDataUpdater.java 1.0 12 Jan 1997
- *
- * Copyright (c) 1996 Krumel & Associates, Inc. All Rights Reserved.
- *
- * This software is provided as is. Krumel & Associates shall not be liable
- * for any damages suffered by licensee as a result of using, modifying or
- * distributing this software or its derivatives.
- */
-
- package symantec.itools.db.awt;
-
- public interface DbDataUpdater {
- public void setDbDataSource(DbDataSource ds);
-
- public void deleteRow(int row) throws TypeNotSupported;
- public void undeleteRow(int row) throws TypeNotSupported;
- public void save() throws TypeNotSupported;
- public void insertRow(int row) throws TypeNotSupported;
- public int appendRow() throws TypeNotSupported;
- }